*{
    margin:0;
    padding:0;
    font-family: Arial, sans-serif;
    
    
}

main{
    height: auto;
}


 .navBar{
    height: 5rem;
    width: 100%;
    border: 1px solid black;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    position: sticky;
    margin-right: -100px;  
    justify-content: space-between;
    padding: 10px 20px;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);   
    
 }

    
      .navBar img {
        height: 55px;
        margin-left: 100px;
      }
    
      .navBar h3 {
        margin: 0 15px;
        font-size: 18px;
        color: rgb(0, 0, 0);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        cursor: pointer;
        position: relative;
      }
    
      .navBar h3:hover {
        color: #050505;
        transition: color 0.3s ease;
      }
    
      /* Underline effect on hover */
      .navBar h3::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: rgb(19, 16, 16);
        transition: width 0.3s;
      }
    
      .navBar h3:hover::after {
        width: 100%;
      }
    
      .navBar .menu {
        display: flex;
      }
    

 /* Mobile View */
 @media (max-width: 768px) {
    .navBar {
      flex-direction: column;
    }

    .navBar h3 {
      margin: 10px 0;
    }

    .menu {
      flex-direction: column;
    }
  }


.p{
    display: flex;
    justify-content: center;
}

.studio{
    max-width: 450px;
    height: 200p;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 1px 5px 2px 1px gray;
    margin-left: 50px;
    

}

.shopimg {
    width: 100%;
    overflow: hidden;
  }
  
  .scroll-container {
    display: flex;
    width: max-content;
    animation: scroll 45s linear infinite;
  }
  
  .studio {
    width: 450px; /* Adjust image width */
    height: auto; /* Maintain aspect ratio */
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

.slideshow{
    height: 300px;
    width: 100%;
    
    
}
.title{
    color: rgb(105, 105, 105);
    
}

.contact{
    margin-top: 380px;
    height: 130px;
    width: 100%;
    
    box-shadow: 0px 0px 5px 0px gray;
    display: flex;
    
}
.contactp{
    font-size: xx-large;
    font-weight: 500;
    margin-top: 40px;
    margin-left: 130px;
}
.anchor{
    color: black;
    font-weight: 200;
}


.box{
    height: 380px;
    width: 350px;
    justify-content: space-around;
}
.Grid-section{
    display: flex;
    justify-content: space-evenly;
    
}


/* grid section  */

.Grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: beige;
    justify-content: space-evenly;
    display:flex;
}

.box {
    text-align: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.box img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.box h6 {
    margin-top: 15px;
    font-size: 1.1rem;
}

.box p {
    font-size: 0.95rem;
    color: #777;
}


.Grid-section1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: beige;

}

.box1 {
    text-align: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.box1 img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}











/* Responsive adjustments for small devices */


@media (max-width: 768px) {
    .title {
        font-size: 1rem;
        padding: 0 10px;
    }

    .carousel-inner {
        height: 400px;
    }

    .contact img {
        max-width: 50px;
    }

    .contact p {
        font-size: 0.9rem;
    }

    .box h6 {
        font-size: 1rem;
    }

    .box p {
        font-size: 0.85rem;
    }
}



  























footer {
    background-color: #d3b49c; /* Accent Color */
    color: #ffffff; /* Text Color */
    text-align: center;
    padding: 40px 20px; /* Increased padding for a spacious look */
    font-size: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow Effect */
    transition: box-shadow 0.3s ease; /* Animation for shadow */
}

footer:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Darker shadow on hover */
}

.footer-column {
    padding: 10px 15px; /* Spacing around footer columns */
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 15px; /* Space below headings */
    font-size: 18px; /* Slightly larger font for headings */
}

.footer-links {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.footer-links li {
    margin: 10px 0; /* Space between links */
}

footer a {
    color: #ffffff; /* Link Color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #f0e68c; /* Change color on hover */
}

/* Social Icons */
.social-icons {
    margin: 10px 0; /* Space above icons */
}

.social-icon {
    color: #ffffff; /* Icon color */
    margin: 0 5px; /* Space between icons */
    font-size: 20px; /* Icon size */
}

footer p {
    margin: 5px 0; /* Space between paragraphs */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px; /* Space above bottom text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 20px; /* Space below footer columns */
    }

    .links {
        display: flex;
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center align items */
    }

    .footer-links {
        text-align: center; /* Center text for links */
    }

    footer {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }
}
